home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_08_02
/
8n02061a
< prev
next >
Wrap
Text File
|
1990-02-28
|
377b
|
32 lines
*****Listing 1*****
/* h1.h */
#ifndef H1_H
#define H1_H
...
#ifndef COUNT_T
#define COUNT_T
typedef unsigned int count;
#endif
...
#endif
/* h2.h */
#ifndef H2_H
#define H2_H
...
#ifndef COUNT_T
#define COUNT_T
typedef unsigned int count;
#endif
...
#endif
#include "h1.h" /* count defined */
#include "h2.h" /* count not redefined */